home *** CD-ROM | disk | FTP | other *** search
- #include <exec/types.h>
- #include <intuition/intuition.h>
- #include "/defs.h"
- #include "/utility.h"
-
- struct pPrefObject {
- ULONG Horiz, Vert;
- };
-
- VOID defaults( struct bMessage *Msg )
- {
- static struct pPrefObject pPO = { 6, 6 };
-
- Msg->bm_Mod = getTopScreenMode();
- Msg->bm_Dep = getTopScreenDepth();
-
- Msg->bm_Info = "Puzzle Module";
- Msg->bm_Data = ( UBYTE * )( &pPO );
- }
-